home *** CD-ROM | disk | FTP | other *** search
/ Workbench Add-On / Workbench Add-On - Volume 1.iso / BBS-Archive / Comm / AmiTCP30b2.lha / src / amitcp / netinet / icmp_var.h next >
C/C++ Source or Header  |  1993-08-12  |  3KB  |  81 lines

  1. /*
  2.  * $Id: icmp_var.h,v 1.3 1993/04/23 00:23:36 ppessi Exp $
  3.  *
  4.  * HISTORY
  5.  * $Log: icmp_var.h,v $
  6.  * Revision 1.3  1993/04/23  00:23:36  ppessi
  7.  * Changed statistic variable type into u_long
  8.  *
  9.  * Revision 1.2  93/03/03  21:59:16  21:59:16  jraja (Jarno Tapio Rajahalme)
  10.  * Moved 'icmpstat' definition to ip_icmp.c.
  11.  * 
  12.  * Revision 1.1  92/11/17  16:27:29  16:27:29  jraja (Jarno Tapio Rajahalme)
  13.  * Initial revision
  14.  * 
  15.  *
  16.  */
  17.  
  18. /*
  19.  * Copyright (c) 1982, 1986 Regents of the University of California.
  20.  * All rights reserved.
  21.  *
  22.  * Redistribution and use in source and binary forms, with or without
  23.  * modification, are permitted provided that the following conditions
  24.  * are met:
  25.  * 1. Redistributions of source code must retain the above copyright
  26.  *    notice, this list of conditions and the following disclaimer.
  27.  * 2. Redistributions in binary form must reproduce the above copyright
  28.  *    notice, this list of conditions and the following disclaimer in the
  29.  *    documentation and/or other materials provided with the distribution.
  30.  * 3. All advertising materials mentioning features or use of this software
  31.  *    must display the following acknowledgement:
  32.  *    This product includes software developed by the University of
  33.  *    California, Berkeley and its contributors.
  34.  * 4. Neither the name of the University nor the names of its contributors
  35.  *    may be used to endorse or promote products derived from this software
  36.  *    without specific prior written permission.
  37.  *
  38.  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  39.  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  40.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  41.  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  42.  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  43.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  44.  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  45.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  46.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  47.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  48.  * SUCH DAMAGE.
  49.  *
  50.  *    @(#)icmp_var.h    7.5 (Berkeley) 6/28/90
  51.  */
  52.  
  53. #ifndef ICMP_VAR_H
  54. #define ICMP_VAR_H
  55.  
  56. /*
  57.  * Variables related to this implementation
  58.  * of the internet control message protocol.
  59.  */
  60. struct    icmpstat {
  61. /* statistics related to icmp packets generated */
  62.     u_long    icps_error;        /* # of calls to icmp_error */
  63.     u_long    icps_oldshort;        /* no error 'cuz old ip too short */
  64.     u_long    icps_oldicmp;        /* no error 'cuz old was icmp */
  65. /* statistics related to input messages processed */
  66.      u_long    icps_badcode;        /* icmp_code out of range */
  67.     u_long    icps_tooshort;        /* packet < ICMP_MINLEN */
  68.     u_long    icps_checksum;        /* bad checksum */
  69.     u_long    icps_badlen;        /* calculated bound mismatch */
  70.     u_long    icps_reflect;        /* number of responses */
  71. /* statistics tables in & out */
  72.     u_long    icps_outhist[ICMP_MAXTYPE + 1];
  73.     u_long    icps_inhist[ICMP_MAXTYPE + 1];
  74. };
  75.  
  76. #ifdef KERNEL
  77. extern struct    icmpstat icmpstat; /* definition moved to ip_icmp.c */
  78. #endif
  79.  
  80. #endif /* !ICMP_VAR_H */
  81.